home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / s_to_z / tu / btchprog.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  584 b   |  21 lines

  1. program Btchprog;
  2.  
  3. uses
  4.   Forms,
  5.   Btchmain in 'BTCHMAIN.PAS' {FormBatchMain},
  6.   Statdlg in 'STATDLG.PAS' {FormStatus},
  7.   Batchdlg in 'BATCHDLG.PAS' {FormBatchDef},
  8.   Getdlg in 'GETDLG.PAS' {GetBatchDlg},
  9.   Errtbdlg in 'ERRTBDLG.PAS' {BtnBottomDlg};
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.CreateForm(TFormBatchMain, FormBatchMain);
  15.   Application.CreateForm(TFormStatus, FormStatus);
  16.   Application.CreateForm(TFormBatchDef, FormBatchDef);
  17.   Application.CreateForm(TGetBatchDlg, GetBatchDlg);
  18.   Application.CreateForm(TBtnBottomDlg, BtnBottomDlg);
  19.   Application.Run;
  20. end.
  21.